home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 1 / PC World Interactive 1 - Nisan 1997.iso / prog / masa / 2 / newmenu.h < prev    next >
C/C++ Source or Header  |  1996-08-11  |  897b  |  43 lines

  1. // NewMenu.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // NewMenu dialog
  6.  
  7. class NewMenu : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     NewMenu(CWnd* pParent = NULL, hack *ph = NULL);   // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(NewMenu)
  15.     enum { IDD = IDD_NEWMENU };
  16.         // NOTE: the ClassWizard will add data members here
  17.     //}}AFX_DATA
  18.  
  19.  
  20. // Overrides
  21.     // ClassWizard generated virtual function overrides
  22.     //{{AFX_VIRTUAL(NewMenu)
  23.     //}}AFX_VIRTUAL
  24.  
  25. // Implementation
  26. protected:
  27.     int        index;
  28.     hack    *phack;
  29.     menu_struct *menu, *newmenu;
  30.     app_struct *newapp;
  31.     BOOL    isnew;
  32.     CWnd    *parent;
  33.     void inline ab_message(char *msg);
  34.  
  35.     // Generated message map functions
  36.     //{{AFX_MSG(NewMenu)
  37.     virtual void OnOK();
  38.     virtual BOOL OnInitDialog();
  39.     virtual void OnCancel();
  40.     //}}AFX_MSG
  41.     DECLARE_MESSAGE_MAP()
  42. };
  43.